Skip to main content

Authenticate

Retrieve a session token in JWT format for a specific user.

Request

GET https://customer.staging.meetingdoctors.com/2/authenticate

Headers

NameValue
apiKeyIntegration identifier provided by MeetingDoctors
secretKeySecurity key provided by MeetingDoctors to securize server-to-server communications
Content-Typeapplication/json
Acceptapplication/json

Request Parameters

NameRequiredTypeValue
installationGuidTrueStringUUID randomly generated for the user
userTokenTrueStringYour user unique identifier

Example

GET https://customer.meetingdoctors.com/2/authenticate?installationGuid=bc19c506-92be-11ed-a1eb-0242ac120002&userToken=47909749J

Response

Parameters

NameTypeValue
jwtStringsession token in jwt format
userHashStringUUID for the user
sessionTokenIntegerUUID for the current session

Example

{
"sessionToken": "f8767940-a467-4217-9b1c-382f44354925",
"userHash": "52c2a324-077b-45cc-84f3-851ad57dd0a1",
"jwt": "eyJ0eXAiOiJKV1QiLCJ...."
}